Create a TupleΒΆ

T = ()
T = tuple()
Create a Tuple.
# Create an empty tuple
T = ()
print(T)                       # ()

# Create an empty tuple with tuple() function built-in Python
T = tuple()
print(T)                       # ()